GtkTreePath *path)
{
GtkTreeViewColumn *column;
+ GtkStyleContext *context;
GList *list, *first_column, *last_column;
gint height = 0;
gint horizontal_separator;
first_column = first_column->next)
;
+ context = gtk_widget_get_style_context (GTK_WIDGET (tree_view));
+ gtk_style_context_save (context);
+ gtk_style_context_add_class (context, GTK_STYLE_CLASS_CELL);
+
for (list = tree_view->priv->columns; list; list = list->next)
{
gint padding = 0;
retval = TRUE;
}
+ gtk_style_context_restore (context);
+
if (draw_hgrid_lines)
height += grid_line_width;